home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 4.iso
/
src
/
apps
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-08-01
|
167b
|
11 lines
SHELL=/bin/sh
SUBDIRS= *
all .DEFAULT:
for d in ${SUBDIRS}; do \
if [ -d $$d ]; then \
echo "=====\tcd $$d; ${MAKE} $@"; \
(cd $$d; ${MAKE} $@); \
fi \
done